home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / mail / delivery / smail-3.001 / smail-3~ / smail-3.1.29.1 / NOTES / Makefile next >
Makefile  |  1994-10-18  |  699b  |  38 lines

  1. #!/bin/make -f
  2. # @(#) $Id: Makefile,v 1.1 1992/09/20 16:56:24 tron Exp $
  3. # Makefile for the smail NOTES directory
  4. #
  5. #    Copyright (C) 1987, 1988 Ronald S. Karr and Landon Curt Noll
  6. #    Copyright (C) 1992  Ronald S. Karr
  7. #
  8. # See the file COPYING, distributed with smail, for restriction
  9. # and warranty information.
  10.  
  11. SHELL=/bin/sh
  12. MAKE=make
  13. GET=sccs get
  14. AR=ar
  15. LINT=lint
  16. CLEAN=sccs clean
  17. MK=$(MAKE) -${MAKEFLAGS}
  18. SRC_PREFIX=
  19.  
  20. ROOT=../..
  21. NOTESSRC=
  22. MISCSRC=Makefile NFS-BUILD SIMPLE.DOMAIN SMART-HOST
  23. SRC=${NOTESSRC} ${MISCSRC}
  24.  
  25. all install depend clean clobber:
  26.  
  27. sources: ${SRC}
  28.  
  29. ${SRC}:
  30.     ${GET} $@
  31.  
  32. names:
  33.     @for i in ${SRC}; do echo ${SRC_PREFIX}$$i; done
  34.  
  35. nuke: clobber
  36.     -${CLEAN}
  37.     -${GET} Makefile
  38.